/* TABS DO MODAL */
.modal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #222;
}
.tab-btn {
    background: none;
    border: none;
    color: #555;
    padding: 10px 15px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    transition: 0.3s;
}
.tab-btn.active {
    color: #00ffcc;
    border-bottom: 2px solid #00ffcc;
}
.tab-content {
    margin-bottom: 20px;
}
.tab-content.active {
    display: block;
}
/* INPUTS DO MODAL */
.modal-select {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
}
.modal-input {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'JetBrains Mono', monospace;
}
.modal-textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    padding: 12px;
    color: #ccc;
    margin-bottom: 15px;
    font-family: 'JetBrains Mono', monospace;
    resize: vertical;
    min-height: 80px;
}
.btn-modal-action {
    width: 100%;
    background: #00ffcc;
    color: #000;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'JetBrains Mono', monospace;
    transition: 0.3s;
}
.btn-modal-action:hover {
    background: #fff;
    box-shadow: 0 0 15px #00ffcc;
}
.modal-cancel {
    width: 100%;
    background: none;
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
    margin-top: 10px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    padding: 10px;
    transition: 0.3s;
    border-radius: 4px;
}
.modal-cancel:hover {
    background: #ff4d4d;
    color: #000;
    box-shadow: 0 0 12px #ff4d4d;
}